Labs 1-4 Submit (managed by git) 
=============================

Assume that your username is jdoe. The following commands
can be used to acquire, develop and submit your work.

To initially acquire a clone of the 355LabsPart1 project:
--------------------------------------------------------
ssh csci fork csci355/355LabsPart1 csci355/jdoe/355LabsPart1
git clone csci:csci355/jdoe/355LabsPart1


To submit your 355LabsPart1  work (must be located in 355LabsPart1 directory with README):
-----------------------------------------------------------------------------------------
git add --all .
git commit
git push

To acquire instructor updates to 355LabsPart1:
--------------------------------------
git remote add instructor csci:csci355/355LabsPart1
git fetch instructor
git diff instructor/master master
git merge instructor/master master

